home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 137 / cd-rom 137.iso / aplic / gantt / ganttproject-2.0.2.exe / net.sourceforge.ganttproject_2.0.0 / data / resources / xslt / gantt-chart.xsl next >
Encoding:
Extensible Markup Language  |  2006-08-08  |  416 b   |  18 lines

  1. <?xml version="1.0" encoding="iso-8859-2" ?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3.  
  4. <xsl:output method="html" indent="yes" encoding="UTF-8"/>
  5.  
  6. <xsl:include href="gantt-utils.xsl"/>
  7.  
  8. <xsl:template match="chart">
  9. <br/>
  10. <img>
  11.     <xsl:attribute name="src"><xsl:value-of select="."/></xsl:attribute>
  12. </img>
  13. <br/>
  14. </xsl:template>
  15.  
  16. <xsl:template match="project" />
  17. </xsl:stylesheet>
  18.